/* Modern CSS with minimal changes */
:root {
  --primary: #6f00ff;
  --primary-dark: #4e00b5;
  --text-dark: #1a1a1a;
  --text-light: #f8f9fa;
  --gray: #6c757d;
  --transition: all 0.3s ease;
}

/* Base Styles */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Modern Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section Enhancements */
/* Hero Section Adjustments */
.hero {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text-dark); /* Changed from gradient */
  background: none; /* Remove gradient */
  -webkit-text-fill-color: initial; /* Reset text color */
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

.btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 500;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

/* Remove hover effects if you want exact match */
.btn-primary:hover {
  transform: none;
  box-shadow: none;
}

.btn-outline:hover {
  background: transparent;
  color: var(--primary);
}

/* Mobile Menu */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: var(--text-dark);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .hamburger {
      display: block;
  }

  .nav-menu {
      position: fixed;
      left: -100%;
      top: 80px;
      flex-direction: column;
      width: 100%;
      text-align: center;
      background: white;
      padding: 2rem 0;
      transition: var(--transition);
  }

  .nav-menu.active {
      left: 0;
  }

  .hero h1 {
      font-size: 2.2rem;
  }
}

/* Add your existing section styles here */
/* Add this to your existing CSS */
